@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none; border: none;
  text-transform:capitalize;
  transition: all .2s linear;
}
html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body{
  background: #f7f7f7;
  font-family: 'Poppins', sans-serif;
}

*::selection{
  background: #2b3dda;
  color: #fff;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar{
  width: .8rem;
}
html::-webkit-scrollbar-track{
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb{
  background: #420177;
}

/* navbar starts */
header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146,161,176,.3);
}
section{
  min-height: 100vh;
  padding: 2rem 9%;
}
.heading{
  font-size: 3.5rem;
  color: rgb(32, 32, 32);
  font-weight: 800;
  text-align: center;
}
.heading span{
  color: rgb(115, 3, 167);
}
header .logo{
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #0E2431;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #fc8c05;
}
header .navbar ul{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li{
  margin-left: 2.5rem;
}
header .navbar ul li a{
  font-size: 1.57rem;
  color: #0E2431;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
}
header .navbar ul li a.active,
header .navbar ul li a:hover{
  color: #011aff;
  border-bottom: .2rem solid #011aff;
  padding: .5rem 0;
}
/* navbar ends */

/* hamburger icon starts*/
#menu{
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}
@media(max-width:768px){
  #menu{
      display: block;
  }
  header .navbar{
    position: fixed;
    top: 6.5rem; right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }
  header .navbar ul{
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li{
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: .5rem;
    width: 26rem;
  }
  header .navbar ul li a{
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover{
    padding: 1rem;
    color: #fff;
    border-radius: .5rem;
    border-bottom: .5rem solid #011aff;
  }
  .fa-times{
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle{
    right: 0;
  }
}
/* hamburger icon ends */

/* work section starts */
.work{
  /* background: #010124; */
  background: linear-gradient(to bottom, #010136, #00003a);
  margin-top: 5rem;
  padding: 3rem 5% !important;
}
.work h2{
  color: #fff;
  padding: 1rem;
}
.work .heading span{
  color: rgb(255, 230, 0);
}
.work .button-group{
  display: flex;
  flex-wrap: wrap;
  gap:1rem;
  margin: 2rem auto;
  width: 50%;
  justify-content: center;
  align-items: center;
}
.work .button-group .btn{
  outline: none;
  padding: 1rem 2rem;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 500;
}
.work .button-group .btn:hover{
  background-color: #fff;
  color: #000;
}
.work .button-group .btn.is-checked{
  background-color: #fff;
  color: #000;
}
.work .box-container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 2rem auto 4rem auto;
  max-width: 140rem;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 1;
}
.work .box-container::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.work .box-container .grid-item {
  width: 100% !important;
  display: block;
  position: relative !important;
  left: auto !important;
  top: auto !important;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.work .box-container .grid-item[style*="display: none"] {
  display: none !important;
}
.work .box-container .box::-webkit-scrollbar {
  display: none; /* WebKit browsers (Chrome, Safari) */
}
.work .box-container .box {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  background: #fff;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 16 / 10;
  z-index: 1;
  
  /* Hide scrollbars */
  scrollbar-width: none; /* Firefox */
}
.work .box-container .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.7);
}
.work .box-container .box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.work .box-container .box .content{
  height: 100%;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.97);
  display: flex;
  flex-direction: column;
  transition: top 0.4s ease;
  backdrop-filter: blur(10px);
  transform: translateY(-8rem);
}
.work .box-container .box .content .tag{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 8rem;
  width: 100%;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #ffd900 0%, #ffed4e 100%);
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
}
.work .box-container .box .content .tag h3{
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  padding: 0.5rem;
  line-height: 1.3;
}
.work .box-container .box:hover .content{
  top: 0;
  transform: translateY(0);
}

.work .desc {
  margin: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  overflow-y: auto;
}
.work .desc p{
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}
.work .desc .btns{
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  width: 100%;
  margin-top: auto;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.work .desc .btns .btn{
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: .8rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.work .desc .btns .btn:hover{
  background: linear-gradient(135deg, #310ae0 0%, #4520ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(49, 10, 224, 0.4);
}

/* Tablet and smaller screens */
@media screen and (max-width: 968px) {
  .work .box-container{
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  .work .box-container .box {
    aspect-ratio: 16 / 10;
  }
  .work .box-container .box .content .tag{
    min-height: 7rem;
    padding: 1.2rem 1.5rem;
  }
  .work .box-container .box .content .tag h3{
    font-size: 2rem;
  }
}

@media screen and (max-width: 450px) {
  .work .button-group{
    width: 100%;
    gap: 0.8rem;
  }
  .work .button-group .btn{
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
  }
  .work .box-container{
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 1rem auto;
    padding: 0 1rem;
  }
  .work .box-container .box{
    aspect-ratio: 4 / 3;
  }
  .work .box-container .box .content{
    transform: translateY(-7rem);
  }
  .work .box-container .box .content .tag{
    min-height: 7rem;
    padding: 1rem 1.5rem;
  }
  .work .box-container .box .content .tag h3{
    font-size: 1.8rem;
  }
  .work .desc p{
    font-size: 1.4rem;
  }
  .work .desc .btns{
    gap: 1rem;
  }
  .work .desc .btns .btn{
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
}

/* back to home button */
.backbtn{
  display: block;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
  width: 100%;
  clear: both;
  position: relative;
  z-index: 10;
  padding: 0 2rem;
}
.backbtn .btn {
  position: relative;
  line-height: normal;
  padding: 1.6rem 3rem;
  border-radius: .5em;
  transition: 0.3s;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.backbtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: 'Nunito', sans-serif;
  line-height: 1;
}
.backbtn .btn i {
  font-size: 1.5rem;
  transition: 0.3s;
  line-height: 1;
}
.backbtn .btn:hover{
  background: #ffffff;
  color: #000;
  box-shadow: 0px 6px 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.backbtn .btn:hover i {
  transform: translateX(-8px);
}
/* work section ends */

/* common media queries starts*/
@media(max-width:450px){
  html{
    font-size: 55%;
  }
  body{
    padding-right: 0;
  }
  section{
    padding: 2rem;
  }
}
/* common media queries ends*/


/* scroll top starts */
#scroll-top{
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 5rem;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active{
  top: calc(100% - 12rem);
}
/* scroll top ends */